home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog13 < prev    next >
Encoding:
Text File  |  1995-06-29  |  248 b   |  11 lines

  1. # check setting size of a text widget
  2. xtAppInitialize -class Program
  3.  
  4. xmText .text managed -editMode multi_line_edit -rows 10 -columns 40
  5. .text getValues -rows r -columns c
  6. puts stdout "Number of rows: $r, columns: $c"
  7.  
  8. . realizeWidget
  9.  
  10. . mainLoop
  11.